/* ==========================================================
FINANCIAL SOLUTIONS
ENTERPRISE LUXURY BLOG CSS
Dark Blue + Cyan + Emerald + Gold Theme
========================================================== */

:root{
--primary:#00d4ff;
--secondary:#00c896;
--gold:#d4af37;
--gold-light:#f7d774;

--dark:#03111f;
--dark2:#061726;
--dark3:#0b2740;
--dark4:#12395c;

--white:#ffffff;
--text:#dbeafe;
--muted:#94a3b8;
}

/* ==========================================================
RESET
========================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:
"Segoe UI",
sans-serif;

background:

radial-gradient(
circle at top left,
rgba(0,212,255,.08),
transparent 30%
),

radial-gradient(
circle at bottom right,
rgba(0,255,213,.08),
transparent 30%
),

linear-gradient(
135deg,
#03111f,
#061726,
#0b2740,
#12395c
);

color:white;

overflow-x:hidden;
}

/* ==========================================================
NAVBAR
========================================================== */

.navbar{

width:100%;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 6%;

position:sticky;
top:0;

z-index:9999;

background:
rgba(3,17,31,.92);

backdrop-filter:blur(20px);

border-bottom:
1px solid rgba(255,255,255,.05);

box-shadow:
0 15px 40px rgba(0,0,0,.35);
}

.logo{

font-size:34px;

font-weight:800;

color:#00ffd5;

letter-spacing:.5px;

text-shadow:
0 0 30px rgba(0,255,213,.35);
}

.nav-links{

display:flex;

gap:15px;

list-style:none;
}

.nav-links a{

text-decoration:none;

color:white;

padding:12px 18px;

border-radius:30px;

font-weight:500;

transition:.35s;
}

.nav-links a:hover{

background:
linear-gradient(
135deg,
#00c896,
#00a6ff
);

transform:
translateY(-2px);
}

.auth-buttons{

display:flex;
gap:12px;
}

.login-btn{

text-decoration:none;

color:white;

padding:12px 24px;

border-radius:50px;

border:
1px solid rgba(255,255,255,.15);

transition:.3s;
}

.login-btn:hover{

border-color:#00ffd5;

box-shadow:
0 0 20px rgba(0,255,213,.15);
}

.signup-btn{

text-decoration:none;

padding:12px 24px;

border-radius:50px;

font-weight:700;

background:
linear-gradient(
135deg,
#00c896,
#00a6ff
);

color:white;

box-shadow:
0 10px 25px rgba(0,166,255,.25);

transition:.35s;
}

.signup-btn:hover{

transform:
translateY(-3px);

box-shadow:
0 15px 35px rgba(0,255,213,.25);
}

/* ==========================================================
HERO
========================================================== */

.blog-hero{

min-height:90vh;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

position:relative;

overflow:hidden;

padding:20px;

background:

linear-gradient(
rgba(2,8,23,.86),
rgba(2,8,23,.90)
),

url("../../images/blog-banner.png");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.blog-hero::before{

content:"";

position:absolute;

width:700px;
height:700px;

top:-250px;
right:-250px;

border-radius:50%;

background:
rgba(0,255,213,.08);

filter:blur(90px);
}

.blog-hero::after{

content:"";

position:absolute;

width:600px;
height:600px;

left:-250px;
bottom:-250px;

border-radius:50%;

background:
rgba(0,166,255,.08);

filter:blur(90px);
}

.hero-content{

position:relative;
z-index:2;
}

.hero-content h1{

font-size:95px;

font-weight:900;

line-height:1.1;

background:
linear-gradient(
90deg,
#ffffff,
#00ffd5,
#00d4ff
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:20px;
}

.hero-content p{

font-size:24px;

max-width:900px;

margin:auto;

line-height:1.8;

color:#dbeafe;

margin-bottom:40px;
}

/* ==========================================================
SEARCH
========================================================== */

.hero-search{

display:flex;

max-width:760px;

margin:auto;

padding:8px;

border-radius:60px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(15px);
}

.hero-search input{

width:100%;

padding:18px;

border:none;
outline:none;

font-size:17px;

border-radius:50px 0 0 50px;
}

.hero-search button{

padding:18px 32px;

border:none;

cursor:pointer;

color:white;

background:
linear-gradient(
135deg,
#00c896,
#00a6ff
);

border-radius:0 50px 50px 0;
}

/* ==========================================================
SECTION
========================================================== */

.blog-section{

padding:120px 6%;
}

.blog-section h2{

text-align:center;

font-size:72px;

font-weight:900;

margin-bottom:80px;

background:
linear-gradient(
90deg,
#ffffff,
#00ffd5
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* ==========================================================
GRID
========================================================== */

.blog-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));

gap:35px;
}

/* ==========================================================
BLOG CARD
========================================================== */

.blog-card{

position:relative;

background:

linear-gradient(
145deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

backdrop-filter:blur(25px);

border:
1px solid rgba(255,255,255,.08);

border-radius:30px;

overflow:hidden;

transition:.5s;

box-shadow:
0 20px 50px rgba(0,0,0,.35);
}

.blog-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:2px;

background:
linear-gradient(
90deg,
#00ffd5,
#00a6ff,
#00ffd5
);

opacity:0;

transition:.5s;
}

.blog-card:hover::before{
opacity:1;
}

.blog-card:hover{

transform:
translateY(-15px);

box-shadow:
0 35px 80px rgba(0,0,0,.45),
0 0 40px rgba(0,212,255,.12);

border:
1px solid rgba(0,255,213,.25);
}

/* ==========================================================
IMAGE
========================================================== */

.blog-card img{

width:100%;

height:320px;

/* FULL IMAGE FIT */
object-fit:contain;

background:
linear-gradient(
135deg,
#03111f,
#0b2740
);

padding:15px;

display:block;

transition:.6s;
}

.blog-card:hover img{

transform:scale(1.04);
}

/* ==========================================================
CONTENT
========================================================== */

.blog-content{

padding:30px;
}

.blog-content span{

display:inline-block;

padding:10px 22px;

border-radius:50px;

font-size:13px;

font-weight:700;

background:
linear-gradient(
135deg,
#d4af37,
#f7d774
);

color:#111;

box-shadow:
0 10px 25px rgba(212,175,55,.25);
}

.blog-meta{

margin-top:15px;

font-size:14px;

color:#94a3b8;

display:flex;
align-items:center;
gap:10px;
}

.blog-content h3{

margin-top:22px;

font-size:30px;

line-height:1.4;

font-weight:700;

color:white;
}

.blog-content p{

margin:18px 0 24px;

font-size:17px;

line-height:1.9;

color:#dbeafe;
}

/* ==========================================================
BUTTON
========================================================== */

.blog-content a{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

border-radius:50px;

font-weight:700;

text-decoration:none;

color:white;

background:
linear-gradient(
135deg,
#00c896,
#00a6ff
);

transition:.35s;
}

.blog-content a:hover{

transform:
translateY(-4px);

box-shadow:
0 0 35px rgba(0,255,213,.25);
}

/* ==========================================================
EMPTY BLOG
========================================================== */

.empty-blog{

text-align:center;

padding:100px 30px;

border-radius:30px;

background:
rgba(255,255,255,.05);

border:
1px solid rgba(255,255,255,.08);
}

.empty-blog h3{

font-size:40px;

margin-bottom:15px;
}

.empty-blog p{

color:#cbd5e1;
}

/* ==========================================================
SCROLLBAR
========================================================== */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#061726;
}

::-webkit-scrollbar-thumb{

background:
linear-gradient(
180deg,
#00c896,
#00a6ff
);

border-radius:20px;
}

/* ==========================================================
ANIMATIONS
========================================================== */

.blog-card,
.hero-content{

animation:fadeUp .8s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}
}

/* ==========================================================
MOBILE
========================================================== */

@media screen and (max-width:768px){

.auth-buttons{
display:flex !important;
visibility:visible !important;
opacity:1 !important;
width:100% !important;
justify-content:center !important;
margin-top:15px !important;
}

.login-btn,
.signup-btn{
display:inline-block !important;
visibility:visible !important;
opacity:1 !important;
}

.navbar{
flex-direction:column !important;
align-items:center !important;
}

.logo{
margin-bottom:10px;
}

}

/* =========================
   ULTRA PREMIUM FOOTER
========================= */

.premium-footer{

position:relative;

background:
linear-gradient(
135deg,
#02111f,
#062742,
#003566
);

padding:90px 8% 30px;

overflow:hidden;

color:white;
}

.footer-glow{

position:absolute;

width:500px;
height:500px;

background:
rgba(0,255,213,.08);

border-radius:50%;

top:-200px;
right:-150px;

filter:blur(120px);
}

.footer-container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:50px;

position:relative;
z-index:2;
}

.footer-col h2{

font-size:34px;

margin-bottom:20px;

color:#00ffd5;
}

.footer-col h3{

font-size:24px;

margin-bottom:25px;

color:#d4af37;
}

.footer-col p{

line-height:1.9;

color:#dbeafe;

margin-bottom:12px;
}

.footer-col ul{

list-style:none;
}

.footer-col ul li{

margin-bottom:14px;
}

.footer-col ul li a{

text-decoration:none;

color:#dbeafe;

transition:.3s;
}

.footer-col ul li a:hover{

color:#00ffd5;

padding-left:8px;
}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;
}

.footer-social a{

width:50px;
height:50px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

background:
rgba(255,255,255,.08);

color:white;

font-size:18px;

text-decoration:none;

transition:.4s;
}

.footer-social a:hover{

background:
linear-gradient(
135deg,
#00c896,
#00a6ff
);

transform:
translateY(-6px);

box-shadow:
0 0 25px rgba(0,255,213,.25);
}

.footer-bottom{

margin-top:60px;

padding-top:25px;

text-align:center;

border-top:
1px solid rgba(255,255,255,.08);
}

.footer-bottom p{

color:#94a3b8;

margin:8px 0;
}

/* MOBILE */

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;
}

.footer-social{

justify-content:center;
}

}